home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Interfaces & Libraries / Interfaces / AStructMacs / Sample.make < prev    next >
Encoding:
Text File  |  1991-04-17  |  694 b   |  32 lines  |  [TEXT/MPS ]

  1. #    MakeFile    -  Make File for Assembly Language 
  2. #                    Structured Macros Example.
  3. #
  4. #    Copyright Apple Computer, Inc. 1986-1990
  5. #    All rights reserved.
  6. #
  7. #    This makefile builds:
  8. #        Sample  - an example application.
  9. #
  10. # This file is a MPW Script file to build the sample program in
  11. #    {MPW}Interfaces:AStructMacs
  12. #
  13.  
  14. AOptions        = -w
  15.  
  16. AObjs            = Sample.a.o 
  17.  
  18. FlowCtlMacs.d    ƒ FlowCtlMacs.a
  19.     asm FlowCtlMacs.a
  20.     
  21. ProgStrucMacs.d    ƒ ProgStrucMacs.a
  22.     asm ProgStrucMacs.a
  23.  
  24. Sample.a.o        ƒƒ Sample.make FlowCtlMacs.d ProgStrucMacs.d
  25.  
  26. Sample            ƒƒ {AObjs} Sample.make
  27.                     Link -o {Targ} {AObjs}
  28.                     SetFile {Targ} -t APPL -c 'MOOS' -a B
  29.  
  30. Sample            ƒƒ Sample.r Sample.make
  31.                     Rez -rd -o {Targ} Sample.r -append
  32.